安全检查 流程分析 经分析,很容易知道这里的数组可以进行越界来修改返回地址的值 有后门函数 漏洞利用 通过数组溢出修改返回值,到达后门函数 不过我在本地打通后,远程打得时候发现没有后门函数也就是/bin/bash not found 当时有点懵逼,并且对linux命令不太熟悉的我,想了很久没结果后, ...
分类:
其他好文 时间:
2020-12-24 11:36:51
阅读次数:
0
tar命令副本(本机备份整个系统,以后还原还是还原到本机)注意根目录下要有充足的可用空间用于备份。cd/#tar.gz格式tarcvpzfsystem_backup.tar.gz/--exclude=/proc--exclude=/lost+found--exclude=/system_backup.tar.gz--exclude=/mnt--exclude=/sys#tar.bz2格式tarcv
分类:
系统相关 时间:
2020-12-22 13:09:31
阅读次数:
0
P2869 [USACO07DEC]美食的食草动物Gourmet Grazers 题目描述 [链接] Like so many others, the cows have developed very haughty tastes and will no longer graze on just a ...
分类:
其他好文 时间:
2020-12-21 12:00:15
阅读次数:
0
Vue——mac环境下报错vue-cli-service: command not found 话不多说,直接讲方法,在终端输入: sudo rm -rf node_modules package-lock.json && npm install ...
分类:
其他好文 时间:
2020-12-21 11:04:05
阅读次数:
0
# encoding: utf-8 import urllib.request import urllib.parse url = "https://www.so.com/s?q=" keyword = input("请输入搜索关键词") keyword = urllib.parse.quote(k ...
分类:
其他好文 时间:
2020-12-19 12:36:43
阅读次数:
1
Django-cas-ng 报Not Found: /accounts/login/ 报错如下,在请求接口地址时,由于未登录,会跳转到登录页面,但是没有往预想的登录页跳转,而是跳转到/accounts/login/ [14/Dec/2020 14:17:55] "GET /api/v1/projec ...
分类:
其他好文 时间:
2020-12-19 12:11:59
阅读次数:
1
1、安装 mod_rewrite 模块 Apache 服务器默认是没有打开 mod_rewrite 模块的,必须手动来启动。打开配置文件httpd.conf,找到下面一行: #LoadModule rewrite_module modules/mod_rewrite.so 将前面的#号删除,保存后重 ...
分类:
数据库 时间:
2020-12-15 12:20:45
阅读次数:
4
1.安装依赖项 [compiler] sudo apt-get install build-essential [required] sudo apt-get install cmake git libgtk2.0-dev pkg-config libavcodec-dev libavformat- ...
分类:
系统相关 时间:
2020-12-15 12:08:24
阅读次数:
4
ldd list dynamic dependencies 列出动态依赖关系 使用方法例: $ ldd darknet linux-vdso.so.1 => (0x00007ffe1c956000) libopencv_highgui.so.3.4 => /usr/local/lib/libopen ...
分类:
系统相关 时间:
2020-12-14 13:48:10
阅读次数:
11
Go的plugin .so文件的生成 首先创建一个mingTest包,包中创建remainder.go文件 文件内容如下: package main import "fmt" func GetRemainder() { fmt.Println(150%500) } remainder.go文件作为生 ...
分类:
其他好文 时间:
2020-12-14 13:16:02
阅读次数:
2